body,
html {
}

body {
    /* overflow: hidden; */
    position: relative;
    padding: 0;
    margin: 0;
    text-decoration: none;
}

*,
a {
    padding: 0;
    margin: 0;
    list-style: none;
    text-decoration: none;
}


a {
    display: block;
}

.text-shadow2 {
    text-shadow: 10px 5px 10px rgba(0, 0, 0, 0.8)
}

/*!
 * Hamburgers
 */
.hamburger {
    padding: 15px 15px;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
}

.hamburger:hover {
    opacity: 0.7;
}

.hamburger.is-active:hover {
    opacity: 0.7;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
    background-color: #000;
}

.hamburger-box {
    width: 40px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 40px;
    height: 4px;
    background-color: #000;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.3s;
    transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -10px;
}

.hamburger-inner::after {
    bottom: -10px;
}

/*
   * 3DY Reverse
   */
.hamburger--3dy-r .hamburger-box {
    perspective: 80px;
}

.hamburger--3dy-r .hamburger-inner {
    transition: transform 0.45s 0s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy-r .hamburger-inner::before,
.hamburger--3dy-r .hamburger-inner::after {
    transition: transform 0.3s 0s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy-r.is-active .hamburger-inner {
    background-color: transparent !important;
    transform: rotateX(180deg);
}

.hamburger--3dy-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 7px, 0) rotate(45deg);
}

.hamburger--3dy-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -7px, 0) rotate(-45deg);
}

.animate-inFromLeft,
.animate-inFromRight {
    visibility: visible !important;
}

.animate-outToRight .li-js {
    /*animation: outToRight 0.6s both cubic-bezier(0.7, 0, 0.3, 1);*/
}

.animate-outToLeft .li-js {
    animation: outToLeft 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}

.animate-inFromLeft .li-js {
    animation: inFromLeft 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}

.animate-inFromRight .li-js {
    /*animation: inFromRight 0.6s both cubic-bezier(0.7, 0, 0.3, 1);*/
}

@keyframes outToRight {
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

@keyframes outToLeft {
    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes inFromLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes inFromRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes opacity1 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/*loading*/
#page-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    background-color: #131230;
    z-index: 9999;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
}

.preloader .preloader-section {
    position: absolute;
    width: 100%;
    background-color: #19191c;
}

.preloader .preloader-section.preloader-top {
    top: 0;
    height: 55%;
}

.preloader .preloader-section.preloader-bottom {
    bottom: 0;
    height: 45%;
}

.preloader .preloader-wrapper {
    position: absolute;
    top: 50%;
    width: 100%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.preloader .progress {
    box-sizing: border-box;
    position: relative;
    width: 20%;
    height: 2px;
    margin-right: auto;
    margin-left: auto;
    background-color: #0f6cb8;
}

.preloader .progress .progress-inner {
    position: absolute;
    max-width: 100%;
    width: 0;
    height: 100%;
    background: #fff;
    -webkit-animation: widthlenth 1.5s 2 ease;
    -moz-animation: widthlenth 1.5s 2 ease;
}

.preloader .preloader-logo-wrapper {
    position: absolute;
    bottom: 30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.preloader .preloader-logo {
    width: 332px;
    text-align: center;
    overflow: hidden;
}

.preloader .preloader-logo img {
    max-width: 100%;
}

.preloader.active .progress {
    width: 100%;
    -webkit-transition: width .6s 3s ease;
    -o-transition: width .6s 3s ease;
    transition: width .6s 3s ease;
}

.preloader.onn {
    visibility: hidden;
}

.preloader.on .progress {
    visibility: hidden;
}

.preloader.active .preloader-section.preloader-top {
    height: 0;
    -webkit-transition: height .6s 3.6s ease;
    -o-transition: height .6s 3.6s ease;
    transition: height .6s 3.6s ease;
}

.preloader.active .preloader-logo {
    transform: translateY(200%);
    transform: translateY(200%);
    -webkit-transition: transform .6s 3s ease;
    -o-transition: transform .6s 3s ease;
    transition: transform .6s 3s ease;
}

.preloader.on .preloader-logo {
    opacity: 0;
    visibility: hidden;
}

.preloader.active .preloader-section.preloader-bottom {
    height: 0;
    -webkit-transition: height .6s 3.6s ease;
    -o-transition: height .6s 3.6s ease;
    transition: height .6s 3.6s ease;
}

@keyframes widthlenth {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

@keyframes bigimg {
    0% {
        transform: scale(0.9, 0.9);
    }

    50% {
        transform: scale(1, 1);
    }

    100% {
        transform: scale(1.1, 1.1);
    }
}

/*#loading{
  display: none !important;
}*/
/*loading*/
.footer1 {
    background: #222;
    /*padding-top:1.5rem;*/
    padding-top: 80px;
}

.footer1 .fot-nav {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: flex-start;
    padding: 0 3% 3%;
}

.footer1 .fot-nav .dl {
    width: 24%;
}

.footer1 .fot-nav .dl .dt {
    margin-bottom: .5rem;
    transition: color .3s ease-in-out;
    color: #a7a7a7;
}

.footer1 .fot-nav .dl .dd {
    color: #9a9a9a;
    margin-bottom: .25rem;
    transition: color .3s ease-in-out;
}

.footer1 .fot-nav .dl .dd:hover,
.footer1 .fot-nav .dl .dt:hover {
    color: #2d8edd;
}

.footer1 .fot-nav .dl:first-child {
    margin-right: 6%;
}

.footer1 .fot-nav .dl:first-child p {
    font-size: 16px;
    margin-top: 12%;
}

.footer1 .fot-nav .dl:last-child {
    width: 40%;
}

.footer1 .fot-nav .dl:last-child .dt {
    margin-bottom: .35rem;
}

.footer1 .fot-nav .info {}

.footer1 .fot-nav .info p {
    color: #a7a7a7;
    margin-bottom: 10px;
}

.footer1 .fot-nav .img {
    width: 70px;
}

.footer1 .fot-nav .img img {
    width: 100%;
}

.footer1 .fot-bot {
    border-top: 1px solid #121212;
    background: #121212;
    padding: .7rem 0;
}

.footer1 .fot-bot .n-fot-bot {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: flex-start;
}

.footer1 .fot-bot .p-left {
    font-size: 12px;
    color: #686868;
    line-height: 1.5;
    margin-right: 80px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.footer1 .fot-bot .p-left p a {
    color: #a7a7a7;
}

.footer1 .fot-bot .p-left .fot-bot-nav {
    margin-left: 80px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.footer1 .fot-bot .p-left .fot-bot-nav a {
    padding: 0 .25rem;
    color: #444;
    transition: color .3s ease-in-out;
}

.footer1 .fot-bot .p-left .fot-bot-nav span {
    color: #383838;
}

.footer1 .fot-bot .p-left .fot-bot-nav a:hover {
    color: #2d8edd;
}

.footer1 .fot-bot p {
    margin-bottom: 0;
}

.footer2 {
    background: #151515;
    padding-top: 1.25rem;
    padding-bottom: 1rem;
}

.footer2 .bot-nav {
    width: 100%;
    padding: 0 4%;
}

.footer2 .bot-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer2 .bot-nav .tit {
    display: block;
    width: 100%;
    padding: .75rem 0;
    line-height: 1.6;
    color: #cdcdcd;
    font-size: .8rem;
    position: relative;
    font-weight: bold;
}

.footer2 .bot-nav .sub-tit:before {
    display: block;
    width: auto;
    height: 20px;
    background-size: 100% auto;
    position: absolute;
    right: 0%;
    top: 50%;
    transform: translate(0, -50%);
}

.footer2 .bot-nav .sub-tit.on {
    color: #fff;
}

.footer2 .bot-nav .sub-tit.on:before {
    content: "\e669";
}

.footer2 .bot-nav .sec-list {
    font-size: .75rem;
    padding-bottom: 1rem;
    display: none;
}

.footer2 .bot-nav .sec-list p {
    padding: .4rem 0;
    line-height: 1.5;
}

.footer2 .bot-nav .sec-list a {
    color: #999;
}

.footer2 .fot-bot {
    padding: 0 4%;
    margin-top: 1rem;
}

.footer2 .fot-bot .p-left {
    font-size: 12px;
    color: #a7a7a7;
    line-height: 1.5;
    width: 100%;
}

.footer2 .fot-bot .p-left a {
    color: #a7a7a7;
}

.footer2 .fot-bot .p-right {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    margin-top: .5rem;
}

.footer2 .fot-bot .p-right a {
    padding: 0;
    margin: 0 .25rem;
    background: none;
    width: 20px;
    height: 20px;
    font-size: 20px;
    color: #595959;
    opacity: 1;
    transition: color .3s ease-in-out;
}

.footer2 .fot-bot .p-right a:hover {
    color: #2d8edd;
}

.header1 {
    background: #fff;
    position: absolute;
    width: 100%;
    padding: 0 2.5rem;
    z-index: 99;
    transition: all .2s ease-in-out;
}

.header1 .n-header {
    height: 70px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    transition: all .5s ease-in-out;
}

.header1 .logo {
    width: 155px;
    position: relative;
    transition: all .5s ease-in-out;
}

.header1 .logo img {
    width: 100%;
}

.header1 .nav {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
}

.header1 .nav .li {
    height: 70px;
    line-height: 70px;
    margin-right: 1rem;
    font-size: 18px;
    font-weight: bold;
}

.header1 .nav .li a {
    display: block;
    color: #a7a7a7;
    transition: all .5s ease;
    text-decoration: none;
}

.header1 .nav .li:hover .ali,
.header1 .nav .li.cur .ali {
    color: #0f6cb8;
}

.header1 .header-right {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
}

.header1 .header-right .language-tab {
    width: 60px;
    position: relative;
}

.header1 .header-right .language-tab .spbox {
    padding-right: 20px;
    color: #a7a7a7;
    font-weight: bold;
    position: relative;
    font-size: 16px;
    cursor: pointer;
    transition: all .3s ease;
}

.header1 .header-right .spbox.cur {
    color: #0f6cb8;
}

.header1 .search-btn {
    font-size: 20px;
    color: #d0d0d0;
    cursor: pointer;
    margin-left: 1rem;
    font-size: 30px;
    transition: all .5s ease;
    background-color: #d0d0d0;
}

.header1 .search-btn:hover {
    color: #0f6cb8;
}

.header1 .subnav3 .ul-f {
    /*padding-right:calc(50% - 700px);*/
}

.header1 .subnav3 .ul-20 {
    /*padding-right:28% !important;*/
}

.header1 .pc-sub-nav {
    background: #262626;
    position: absolute;
    top: 70px;
    padding: 0;
    width: 100%;
    left: 0;
    box-shadow: 2px 5px 10px 0px rgba(0, 0, 0, 0.1);
    line-height: 50px;
    display: none;
}

.header1 .pc-sub-nav .list {
    transition: all .6s;
    left: 0%;
    width: 100%;
}

.header1 .pc-sub-nav .list .nlist .ul-two {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    height: 2.25rem;
    font-size: 16px;
    border-bottom: 1px solid #313131;
}

.header1 .pc-sub-nav .list .nlist .ul-two .li2 {
    margin: 0 1rem;
    display: block;
    line-height: 2.25rem;
}

.header1 .pc-sub-nav .list .nlist .ul-two .li2 a.sp {
    color: #a7a7a7;
    /*opacity:.8;*/
    font-size: 18px;
    transition: color .5s ease-in-out;
    position: relative;
}

.header1 .pc-sub-nav .list .nlist .ul-two .li2 a.sp:before {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    background: #0f6cb8;
    transition: width .5s ease-in-out;
}

.header1 .pc-sub-nav .list .nlist .ul-two .li2:hover a.sp,
.header1 .pc-sub-nav .list .nlist .ul-two .li2.cur a.sp {
    opacity: 1;
    color: #fff;
}

.header1 .pc-sub-nav .list .nlist .ul-two .li2:hover a.sp:before,
.header1 .pc-sub-nav .list .nlist .ul-two .li2.cur a.sp:before {
    width: 100%;
}

.header1 .pc-sub-nav .list .li-item-box {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: stretch;
}

.header1 .pc-sub-nav .list .w20 {
    width: 16.6%;
}

.header1 .pc-sub-nav .list .w50 {
    width: 50%;
}

.header1 .pc-sub-nav .list .w25 {
    width: 25%;
}

.header1 .pc-sub-nav .list .li-item {
    padding: .6rem 1rem 0px;
    border-right: 1px solid #313131;
}

.header1 .pc-sub-nav .list .li-item .dd {
    margin-bottom: .6rem;
    font-size: 18px;
    line-height: 2;
}

.header1 .pc-sub-nav .list .li-item .dd:hover {
    color: #0f6cb8;
}

.header1 .pc-sub-nav .list .li-item .dt {
    font-size: 16px;
    line-height: 2.5;
    color: #fff;
    transition: color .5s ease-in-out;
}

.header1 .pc-sub-nav .list .li-item .dt:hover {
    color: #0f6cb8;
}

.header1 .pc-sub-nav .list .li-item:last-child {
    border-right: none;
}

.header1 .pc-sub-nav .list .li-item-box-2 .li-item2 {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: flex-start;
}

.header1 .pc-sub-nav .list .li-item-box-2 .li-item2 a {
    margin: 0 0 .6rem;
    width: 20%;
    text-align: center;
}

.header1 .pc-sub-nav .list .dtbox {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.header1 .pc-sub-nav .list .dtbox .dt {
    width: 33.3%;
    padding-right: 3%;
}

.header1 .pc-sub-nav .list .li-item-box {
    transition: all 0s .6s ease-in-out;
}

.header1 .pc-sub-nav .list .li-item-box.on {
    transition: all .5s 0s ease-in-out;
}

.header1 .pc-sub-nav .list .li-item-box-2 .dd {
    margin-bottom: .3rem;
}

.header1 .pc-sub-nav .list .li-item-box-2 .dd:hover {
    color: #0f6cb8;
}

.header1 .pc-sub-nav .list .ul-s {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    line-height: 2.25rem;
    font-size: 18px;
    border-bottom: 1px solid #313131;
}

.header1 .pc-sub-nav .list .ul-s .li3 {
    color: #fff;
    margin: 0 .5rem;
    display: block;
    line-height: 2.25rem;
    position: relative;
    transition: color .5s ease-in-out;
}

.header1 .pc-sub-nav .list .ul-s .li3:before {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    background: #0f6cb8;
    transition: width .5s ease-in-out;
}

.header1 .pc-sub-nav .list .ul-s .li3:hover,
.header1 .pc-sub-nav .list .ul-s .li3.cur {
    color: #fff;
    opacity: 1;
}

.header1 .pc-sub-nav .list .ul-s .li3:hover:before,
.header1 .pc-sub-nav .list .ul-s .li3.cur:before {
    width: 100%;
}

.header1 .pc-sub-nav .list .ul-f {
    /*justify-content:flex-end;*/
}

.header1 .pc-sub-nav .list .warp-item {
    width: 100%;
    background: #262626;
    position: absolute;
    width: 100%;
    left: 0;
    top: 2.25rem;
    display: none;
}

.header1 .subnav3 .pc-sub-nav .list .warp-item {
    border-top: 1px solid #313131;
}

.header1 .subnav3 .pc-sub-nav .list .li2 .li-item-box {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    align-items: stretch;
}

.header1 .subnav3 .pc-sub-nav .list .li2:hover .li3,
.header1 .subnav3 .pc-sub-nav .list .li2:hover.cur .li3 {
    color: #fff;
    opacity: 1;
}

.header1 .subnav3 .pc-sub-nav .list .li2:hover .li3:before,
.header1 .subnav3 .pc-sub-nav .list .li2:hover.cur .li3:before {
    width: 100%;
}

.header1 .pc-sub-nav .list.on {
    opacity: 1;
    visibility: visible;
}

.header1 .pc-sub-nav .list .ul-two-sub-2 .li-item-one {
    padding-left: 4.25rem;
}

.header1.on {
    background: #212121;
}

.header1 .pc-sub-nav .list .li-item .dt:last-child {
    margin-bottom: .8rem;
}

.header1.scroll {
    position: fixed;
    background: rgba(0, 0, 0, 1);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.header1.scroll .pc-sub-nav {
    top: 70px;
}

.header1.on {
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.header1.on .pc-sub-nav {
    top: 70px;
}

/*.header1.cur {
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}*/

.header2 {
    height: 65px;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    background: transparent;
    z-index: 15;
    width: 100%;
    display: none;
    transition: all .5s ease-in-out;
}

.header2 .main-wrap {
    height: 65px;
    padding: 0 4%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    transition: all .5s ease-in-out;
}

.header2 .logo {
    width: 6rem;
    height: 65px;
    line-height: 65px;
    overflow: hidden;
}

.header2 .logo a {
    display: block;
}

.header2 .logo img {
    width: 100%;
    vertical-align: middle;
}

.header2 .search-btn {
    font-size: 20px;
    color: #d0d0d0;
    cursor: pointer;
    position: absolute;
    right: calc(8% + 20px);
    height: 65px;
    line-height: 65px;
    width: 40px;
    text-align: center;
    font-size: .9rem;
}

.header2 .language-tab {
    width: 60px;
    height: 65px;
    line-height: 65px;
    position: absolute;
    right: calc(8% + 70px);
    top: 0;
}

.header2 .language-tab .spbox {
    padding-right: 20px;
    color: #999;
    font-weight: bold;
    position: relative;
    font-size: 16px;
    cursor: pointer;
}

.header2 .hamburger {
    position: absolute;
    right: 0%;
    top: 0;
    height: 65px;
    padding: 0 4%;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
}

.header2 .hamburger .hamburger-box {
    width: .9rem;
    height: .9rem;
}

.header2 .hamburger .hamburger-inner::before {
    top: -7px;
}

.header2 .hamburger .hamburger-inner::after {
    top: 7px;
}

.header2 .hamburger .hamburger-inner {
    top: 50%;
    margin-top: -1.5px;
}

.header2 .hamburger .hamburger-inner,
.header2 .hamburger .hamburger-inner::before,
.header2 .hamburger .hamburger-inner::after {
    width: 100%;
    height: 3px;
    background: #fff;
}

.header2 .sub-menu {
    width: 100%;
    display: none;
    position: absolute;
    left: 0;
    top: 65px;
    z-index: 2;
}

.header2 .sub-menu .sub-tab {
    padding: .75rem 3%;
    overflow: hidden;
    border-bottom: 1px solid #3c3c3c;
    position: relative;
}

.header2 .sub-menu .sub-tab .swiper-slide {
    color: #999;
    font-size: .75rem;
    line-height: 1.5;
    text-align: left;
    position: relative;
    transition: color .3s ease-in-out;
}

.header2 .sub-menu .sub-tab .swiper-slide span {
    position: relative;
    text-align: center;
}

.header2 .sub-menu .sub-tab .swiper-slide span:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: calc(-.75rem - (.25 * 0.325rem));
    width: 100%;
    height: 1px;
    background: transparent;
    transition: all .3s ease-in-out;
}

.header2 .sub-menu .sub-tab .swiper-slide span a {
    color: #999;
}

.header2 .sub-menu .sub-tab .swiper-slide:last-child {
    text-align: right;
}

.header2 .sub-menu .sub-tab .swiper-slide.cur,
.header2 .sub-menu .sub-tab .swiper-slide.cur span a {
    color: #fff;
}

.header2 .sub-menu .sub-tab .swiper-scrollbar {
    height: 2px;
}

.header2 .sub-menu .sub-tab .swiper-scrollbar-drag {
    background: #2d8edd;
}

.header2 .sub-menu .sub-ajax {
    height: calc(100vh - 65px - 3.5rem);
    position: relative;
    display: none;
}

.header2 .sub-menu .sub-ajax .list1 {
    padding: .86rem 4% 0;
    height: calc(100vh - 65px - 3.5rem);
    visibility: hidden;
    overflow-y: scroll;
    overflow-x: hidden;
}

.header2 .sub-menu .sub-ajax .list1 .li-item {
    padding: .86rem 0;
    font-size: .65rem;
    color: #ddd;
    position: relative;
}

.header2 .sub-menu .sub-ajax .list1 .li-item:before {
    position: absolute;
    right: 0;
    top: 50%;
    font-size: .6rem;
    transform: translate(0, -50%);
}

.header2 .sub-menu .sub-ajax .list1 .li-item a {
    color: #ddd;
    position: relative;
    font-size: .65rem;
}

.header2 .sub-menu .sub-ajax .list1 .li-item a:before {
    position: absolute;
    right: 0;
    top: 50%;
    font-size: .6rem;
    transform: translate(0, -50%);
}

.header2 .sub-menu .sub-ajax .list2 {
    padding: .86rem 4% 0;
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    overflow: hidden;
    overflow-y: scroll;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.header2 .sub-menu .sub-ajax .list2 .li-item {
    padding: .5rem 0;
    font-size: .65rem;
    color: #ddd;
    position: relative;
}

.header2 .sub-menu .sub-ajax .list2 .li-item:before {
    position: absolute;
    right: 0;
    top: 50%;
    font-size: .6rem;
    transform: translate(0, -50%);
}

.header2 .sub-menu .sub-ajax .list2 .li-item a {
    color: #ddd;
    position: relative;
    font-size: .65rem;
}

.header2 .sub-menu .sub-ajax .list2 .li-item a:before {
    position: absolute;
    right: 0;
    top: 50%;
    font-size: .6rem;
    transform: translate(0, -50%);
}

.header2 .sub-menu .sub-ajax .list2 .li-item2 {
    margin-bottom: .65rem;
    border-bottom: 1px solid #3c3c3c;
}

.header2 .sub-menu .sub-ajax .list2 .li-item2 .title {
    color: #ddd;
}

.header2 .sub-menu .sub-ajax .list2 .li-item2 a.title2 {
    padding: .5rem 0;
    color: #999;
    font-weight: normal;
}

.header2 .sub-menu .sub-ajax .list2 .li-item2:last-child {
    border-bottom: none;
}

.header2 .sub-menu .sub-ajax .list2 .tit {
    font-weight: normal;
}

.header2 .sub-menu .sub-ajax .list2 .back-btn {
    width: 100%;
    text-align: center;
    position: relative;
}

.header2 .sub-menu .sub-ajax .list2 .back-btn:before {
    position: absolute;
    left: 0;
    top: 50%;
    font-size: .6rem;
    transform: translate(0, -50%);
}

.header2 .sub-menu .sub-ajax .list3 .li-item {
    padding: .86rem 0;
}

.header2 .sub-menu ul {
    width: 100%;
    overflow-x: hidden;
}

.header2 .sub-menu li {
    border-bottom: 1px solid #dcdcdc;
    font-size: 16px;
}

.header2 .sub-menu .tit {
    display: block;
    width: 100%;
    /*margin-bottom:.3rem;*/
    line-height: 1.6;
    color: #cdcdcd;
    font-size: .65rem;
    position: relative;
    font-weight: bold;
}

.header2 .sub-menu .sub-ajax .list2 .li-item3 a.title2 {
    padding: .5rem 0;
    color: #999;
    font-weight: normal;
}

.header2 .sub-menu .sub-tit:before {
    display: block;
    width: auto;
    height: 20px;
    background-size: 100% auto;
    position: absolute;
    right: 0%;
    top: 50%;
    font-size: .6rem;
    transform: translate(0, -50%);
}

.header2 .sub-menu .sub-tit.on {
    color: #fff;
}

.header2 .sub-menu .sub-tit.on:before {
    content: "\e669";
}

.header2 .sub-menu .sec-list {
    /*font-size:.75rem;
  padding-bottom:1rem;*/
    display: none;
}

.header2 .sub-menu .sec-list p {
    /*padding:.4rem 0;*/
    line-height: 1.5;
}

.header2 .sub-menu .sec-list a {
    color: #999;
}

.header2 .logo,
.header2 .language-tab,
.header2 .search-btn,
.header2 .hamburger {
    transition: all .5s ease-in-out;
}

.header2.scroll {
    position: fixed;
    height: 55px;
    background: #212121;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.header2.scroll .main-wrap {
    height: 55px;
}

.header2.scroll .logo,
.header2.scroll .language-tab,
.header2.scroll .search-btn,
.header2.scroll .hamburger {
    height: 55px;
    line-height: 55px;
}

.header2.on {
    height: 55px;
    background: #212121;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.header2.on .main-wrap {
    height: 55px;
}

.header2.on .logo,
.header2.on .language-tab,
.header2.on .search-btn,
.header2.on .hamburger {
    height: 55px;
    line-height: 55px;
}

.c-mask-overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background-color: #262626;
    display: none;
}

.search-bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background-color: #f5f5f5;
    display: none;
    z-index: 20;
}

.search-alert {
    position: fixed;
    z-index: 100;
    background-color: #222;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.search-alert input::-webkit-input-placeholder {
    color: #fff !important;
}

.search-alert input::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #fff !important;
}

.search-alert input:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #fff !important;
}

.search-alert input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #fff !important;
}

.search-alert .cent-form {
    opacity: 0;
    transform: translate(0, 40px);
    transition: all .5s;
}

.search-alert .close {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 38px;
    right: 2.6%;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.search-alert .close>img {
    width: 100%;
}

.search-alert .close:before {
    font-size: 30px;
    top: 0;
    left: 0;
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.search-alert .close:hover:before {
    color: #d00010;
}

.search-alert .cent-form {
    position: absolute;
    width: 94.8%;
    left: 2.6%;
    top: 50%;
    height: 2rem;
    margin-top: -63px;
    border-bottom: 1px solid #515151;
}

.search-alert .cent-form:before {
    color: #fff;
    font-size: 30px;
    position: absolute;
    left: 0;
    height: 50px;
    top: 50%;
    margin-top: -25px;
}

.search-alert .cent-form .tex {
    border: none;
    font-size: 1.2rem;
    height: 1.5rem;
    line-height: 1.5rem;
    text-align: center;
    width: 100%;
    color: #555;
    background: none;
    padding-left: 2rem;
    padding-right: 3.5rem;
}

.search-alert .cent-form .sub-butn {
    border: none;
    height: 1.5rem;
    font-size: .8rem;
    line-height: 1.5rem;
    color: #555;
    text-align: right;
    background: none;
    position: absolute;
    right: 0;
    top: 0;
    width: 3.5rem;
    text-align: center;
}

.search-alert {
    transform-origin: bottom center;
    transform: scaleY(0);
    transition: transform .3s .5s;
}

.search-alert.active {
    transform-origin: top center;
    transform: scaleY(1);
    transition: transform .3s;
}

.search-alert.active .cent-form {
    opacity: 1;
    transform: translate(0, 0);
    transition: all .5s .3s;
}

.tab-label {
    display: block;
    position: relative;
    overflow: hidden;
    text-align: center;
    margin: .5rem auto 0;
}

.tab-label .n-tab-label {
    display: inline-block;
    text-align: center;
    height: 22px;
    line-height: 22px;
    font-size: 16px;
    font-weight: bold;
    overflow: hidden;
    position: relative;
    margin-top: 11.5px;
}

.tab-label .tab-label-inner {
    display: block;
}

.tab-label .tab-label-inner-bottom {
    position: absolute;
    top: 0;
    left: 0;
}

.tab-label .tab-label-inner-bottom .words-z,
.tab-label .tab-label-inner-top .words-z {
    position: relative;
}

.tab-label .tab-label-inner-top .words-z span {
    position: relative;
    display: inline-block;
    transform: matrix(1, 0, 0, 1, 0, 0);
    -webkit-transition: transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
}

.tab-label .tab-label-inner-bottom .words-z span {
    position: relative;
    display: inline-block;
    transform: translate(0%, 100%) matrix(1, 0, 0, 1, 0, 0);
    -webkit-transition: transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
}

.tab-label:hover .tab-label-inner-top .words-z span {
    position: relative;
    display: inline-block;
    transform: translate(0%, -100%) matrix(1, 0, 0, 1, 0, 0);
}

.tab-label:hover .tab-label-inner-bottom .words-z span {
    position: relative;
    display: inline-block;
    transform: translate(0%, 0%) matrix(1, 0, 0, 1, 0, 0);
}










/*ÃƒÂ¦Ã¢â‚¬Â¢Ã‹â€ ÃƒÂ¦Ã…Â¾Ã…â€œÃƒÂ¥Ã‚Â¼Ã‚Â¹ÃƒÂ¦Ã‚Â¡Ã¢â‚¬Â ÃƒÂ©Ã†â€™Ã‚Â¨ÃƒÂ¥Ã‹â€ Ã¢â‚¬Â */

.layer-alert .md-content {
    width: 100%;
    height: auto;
    padding: .5rem;
    border-radius: 0;
    background: #f9f9f9;
}

.layer-alert .md-close {
    position: absolute;
    width: 50px;
    height: 50px;
    font-size: 24px;
    background: #000;
    color: #fff;
    right: 0rem;
    top: 0rem;
    cursor: pointer;
    line-height: 40px;
    text-align: center;
    transition: all .3s .3s ease-in-out;
}

.layer-alert {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 50%;
    max-width: 500px;
    min-width: 320px;
    height: auto;
    z-index: 99;
    visibility: hidden;
    backface-visibility: hidden;
    transform: translateX(-50%) translateY(-50%);
}

.layer-alert {
    width: 100%;
    height: auto;
}

.layer-alert .n-text {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    margin: 0 auto;
}

.layer-alert .big-img {
    width: 100%;
    text-align: center;
}

.layer-alert .big-img img {
    display: inline-block;
    width: 100%;
    max-width: 400px;
}

.layer-alert .img-right {
    width: 100%;
    padding: 1.5rem;
}

.layer-alert .tit4 {
    margin-bottom: .5rem;
}

.layer-alert .tit5 {
    margin-bottom: .5rem;
}

.layer-alert.md-show {
    opacity: 1;
    visibility: visible;
}

.layer-alert.md-show~.md-close {
    opacity: 1;
    transition: all .3s 0s ease-in-out;
    visibility: visible;
}

.video-alert.md-show~.fot-overlay {
    opacity: 1;
    visibility: visible;
}

.layer-alert {
    position: fixed;
    top: 0;
    left: 0;
    max-width: none;
    transform: translateX(0) translateY(0);
    width: 100%;
    height: 100vh;
}

.layer-alert .md-content {
    height: 100vh;
    overflow-y: scroll;
}

.layer-alert2 .big-img img {
    max-width: 90%;
}

.fot-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    visibility: hidden;
    top: 0;
    left: 0;
    z-index: 1000;
    opacity: 0;
    background: rgba(0, 0, 0, 0.5);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

@keyframes icon1 {
    0% {
        transform: scale(0.8, 0.8);
        opacity: 1;
    }

    50% {
        transform: scale(1, 1);
        opacity: 0;
    }

    100% {
        transform: scale(0.8, 0.8);
        opacity: 1;
    }
}

@keyframes toRightFromRight {
    79% {
        transform: translate(-102%);
    }

    80% {
        transform: translate(102%);
    }

    81% {
        opacity: 1;
    }
}

@keyframes toRightFromLeft {

    0%,
    100% {
        transform: rotate(180deg);
    }

    79% {
        transform: rotate(180deg) translate(-102%);
    }

    80% {
        transform: rotate(180deg) translate(110%);
    }

    81% {
        opacity: 1;
    }
}

@keyframes pulse {
    from {
        transform: scale3d(1, 1, 1);
    }

    45% {
        transform: scale3d(1.4, 1.4, 1.4);
    }

    to {
        transform: scale3d(1.15, 1.15, 1.15);
    }
}

.backtop-1 {
    position: fixed;
    bottom: 80px;
    right: 3%;
    background-color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    height: 40px;
    padding: 0;
    margin: 0;
    width: 40px;
    border-radius: 50%;
    z-index: 9;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    transform: scale(0, 0);
    opacity: 1;
    transform: translate(0, 50px);
    transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    background: url("../images/up.png") no-repeat center;
    background-size: 20px auto;
    background-color: #383838;
}

.backtop-1:before {
    height: 46px;
    line-height: 46px;
    width: 46px;
    position: relative;
    display: block;
    text-align: center;
    top: 0%;
    font-size: 16px;
    color: #fff;
    animation: start-backtop-1 2s infinite ease-in-out;
}

.backtop-1.active {
    transform: scale(1, 1);
    opacity: 1;
}

@keyframes start-backtop-1 {

    0%,
    30% {
        opacity: 0;
        transform: translate(0, 5px);
    }

    40% {
        opacity: 1;
        transform: translate(0px, -6px);
    }

    100% {
        opacity: 0;
        transform: translate(0px, -8px);
    }
}

.js-m {
    /* opacity: 0;*/
    opacity: 1;
    transform: translate(0, 50px);
    transition: .5s ease-in-out;
}

.js-m.words-js span {
    opacity: 0;
    transform: translate(0, 30px);
    transition: .5s ease-in-out;
}

.js-m.words-js.animate span {
    opacity: 1;
    transform: translate(0, 0px);
}

.words-js span {
    display: inline-block;
}

.js-m.words-js2 {
    opacity: 1;
    transform: translate(0, 0px);
}

.js-m.words-js2 span {
    opacity: 0;
    transform: translate(100px, 0px);
    transition: 0.8s cubic-bezier(0.32, 0.6, 0.4, 1.21);
}

.js-m.words-js2.animate span {
    opacity: 1;
    transform: translate(0px, 0px);
}

.words-js2 span {
    display: inline-block;
}

.js-m.animate-left {
    opacity: 0;
    transform: translate(-60px, 0px);
    transition: .8s ease-in-out;
}

.js-m.animate-right100 {
    opacity: 0;
    transform: translate(100px, 0px);
    transition: .5s ease-in-out;
}

.js-m.animate-right50 {
    opacity: 0;
    transform: translate(50px, 0px);
    transition: opacity 0.8s cubic-bezier(0.32, 0.6, 0.4, 1.21), transform 0.8s cubic-bezier(0.32, 0.6, 0.4, 1.21);
}

.js-m.animate-right2 {
    opacity: 0;
    transform: translate(80px, 0px);
    transition: opacity 1.2s cubic-bezier(0.32, 0.6, 0.4, 1.21), transform 1.2s cubic-bezier(0.32, 0.6, 0.4, 1.21);
}

.js-m.animate-top {
    opacity: 0;
    transform: translate(0, 50px);
    transition: .6s ease-in-out;
}

.js-m.animate-bottom {
    opacity: 0;
    transform: translate(0, -1.5rem);
    transition: 0.8s cubic-bezier(0.32, 0.6, 0.4, 1.21);
}

.js-m.animate {
    opacity: 1 !important;
    transform: translate(0, 0px) !important;
}

.delay1 {
    transition-delay: .1s;
}

.delay2 {
    transition-delay: .2s;
}

.delay3 {
    transition-delay: .3s;
}

.delay4 {
    transition-delay: .4s;
}

/*endÃƒÂ¦Ã¢â‚¬Â¢Ã‹â€ ÃƒÂ¦Ã…Â¾Ã…â€œÃƒÂ¥Ã‚Â¼Ã‚Â¹ÃƒÂ¦Ã‚Â¡Ã¢â‚¬Â ÃƒÂ©Ã†â€™Ã‚Â¨ÃƒÂ¥Ã‹â€ Ã¢â‚¬Â */




.n-banner {
    height: 20rem;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    position: relative;
    z-index: 5;
}

.n-banner .text {
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    padding: 0 5%;
}

.n-banner .sub-navbox {
    position: absolute;
    z-index: 2;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2.25rem;
    line-height: 2.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.n-banner .sub-nav {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
}

.n-banner .li-item {
    font-size: 16px;
    line-height: 1.4;
    position: relative;
}

.n-banner .li-item span {
    padding-right: 25px;
    position: relative;
    color: #fff;
    white-space: nowrap;
    transition: all .3s .45s ease-in-out;
}

.n-banner .li-item span:before {
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
}

.n-banner .spbox {
    padding: 0 .5rem;
    height: 48px;
    line-height: 48px;
    cursor: pointer;
    transition: all .3s .45s ease-in-out;
}

.n-banner .spbox.cur {
    background: #fcfcfc;
    transition: all .3s ease-in-out;
}

.n-banner .spbox.cur span {
    color: #666;
    transition: all .3s ease-in-out;
}

.n-banner .item-sub {
    position: absolute;
    top: 48px;
    left: 0;
    width: 260px;
    background: #fcfcfc;
    line-height: 45px;
    display: none;
}

.n-banner .item-sub .li {
    padding: 0 .5rem;
    line-height: 1.5;
    color: #666;
    height: 45px;
    font-size: 16px;
    position: relative;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: left;
    transition: all .3s ease-in-out;
}

.n-banner .item-sub .li:before {
    position: absolute;
    right: .75rem;
    top: 50%;
    color: #fff;
    transform: translate(-10px, -50%);
    transition: all .3s ease-in-out;
}

.n-banner .item-sub .li:hover {
    background: #c50324;
    color: #fff;
}

.n-banner .item-sub .li:hover:before {
    transform: translate(0px, -50%);
}

.n-banner .li-line {
    margin: 0 .65rem;
    color: #fff;
    opacity: .33;
}

.n-banner .li-item-two {
    font-size: 16px;
    line-height: 1.4;
    position: relative;
}

.n-banner .li-item-two span {
    padding-right: 25px;
    position: relative;
    color: #fff;
    transition: all .3s .45s ease-in-out;
}

.n-banner .li-item-two span:before {
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    height: 16px;
    line-height: 16px;
    margin-top: -8px;
    transform: rotate(180deg);
}

.n-banner .li-item-two .spbox {
    color: #fff;
}

.n-banner .sub-nav-two .swiper-wrapper {
    justify-content: center;
    align-items: center;
    height: 2.25rem;
}

.n-banner .sub-nav-two .li-item {
    margin: 0 .5rem;
}

.n-banner .sub-nav-two .swiper-slide {
    width: auto;
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
}

.n-banner .sub-nav-two .swiper-slide .li-line {
    position: absolute;
    right: 0;
    margin: 0;
    top: 50%;
    transform: translate(0, -50%);
}

.n-banner .warp-ulbox {
    padding: 0 2.5rem;
    bottom: 2.25rem;
    width: 100%;
    position: absolute;
}

.n-banner .warp-ulbox .ulbox {
    width: 1270px;
    margin: 0 auto;
    overflow: hidden;
}

.n-banner .warp-ulbox .swiper-slide .time {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
}

.n-banner .warp-ulbox .swiper-slide .time span {
    margin-right: 10px;
    padding-right: 10px;
    position: relative;
}

.n-banner .warp-ulbox .swiper-slide .time span:before {
    content: "";
    right: 0;
    background: #fff;
    position: absolute;
    width: 1px;
    height: 12px;
    top: 50%;
    margin-top: -6px;
}

.n-banner .warp-ulbox .swiper-button-next,
.n-banner .warp-ulbox .swiper-button-prev {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 24px;
    color: #fff;
    margin-top: -20px;
    opacity: 1;
    transition: all .3s ease;
    opacity: 1;
    cursor: pointer;
    overflow: hidden;
    background: transparent;
    border-radius: 40px;
}

.n-banner .warp-ulbox .swiper-button-next:before,
.n-banner .warp-ulbox .swiper-button-prev:before {
    z-index: 4;
    position: relative;
    text-align: center;
    display: block;
}

.n-banner .warp-ulbox .swiper-button-prev {
    left: 2rem;
}

.n-banner .warp-ulbox .swiper-button-next.swiper-button-disabled,
.n-banner .warp-ulbox .swiper-button-prev.swiper-button-disabled {
    opacity: 1;
    cursor: pointer;
    pointer-events: visible;
}

.n-banner .warp-ulbox .swiper-button-next {
    right: 2rem;
}

.n-banner .warp-ulbox .swiper-button-next:before {
    transform: rotate(-180deg);
}

.n-banner .warp-ulbox .swiper-button-prev:hover:before {
    animation: toRightFromRight 0.5s forwards;
}

.n-banner .warp-ulbox .swiper-button-next:hover:before {
    animation: toRightFromLeft 0.5s forwards;
}

.n-banner .warp-ulbox .swiper-button-prev:hover {
    background: #0f6cb8;
    animation: pulse 0.5s ease-out forwards;
}

.n-banner .warp-ulbox .swiper-button-next:hover {
    background: #0f6cb8;
    animation: pulse 0.5s ease-out forwards;
}

.n-banner .tit-p {
    width: 1200px;
    margin: .7rem auto 0;
}

.n-banner .line-bot {
    position: absolute;
    width: 1px;
    height: 2rem;
    left: 50%;
    bottom: 0;
    background: rgba(255, 255, 255, 0.5);
    z-index: 2;
    animation: fadeOutDown 2s infinite;
    animation-fill-mode: both;
}

@keyframes fadeOutDown {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        -ms-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

.n-banner .sub-navbox,
.n-banner .sub-nav-two {
    transition: height .5s, background .2s;
}

.n-banner .sub-navbox.scroll,
.n-banner .sub-nav-two.scroll {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 4;
    background: rgba(34, 34, 34, 0.6);
    height: 55px;
    line-height: 55px;
}

.n-banner .sub-navbox.scroll .swiper-wrapper,
.n-banner .sub-nav-two.scroll .swiper-wrapper {
    height: 55px;
}

.n-banner .sub-navbox {
    transition: all .3s ease-in-out;
}

.header1 {
    top: 0;
}

.header1.scroll {
    transition: all .3s ease-in-out;
}

.header1.scroll-two {
    top: -70px;
}

.n-banner .sub-navbox.scroll-two {
    top: 70px;
}

.n-banner2 {
    height: 100vh;
}


/*ÃƒÂ¥Ã¢â‚¬Å“Ã‚ÂÃƒÂ¥Ã‚ÂºÃ¢â‚¬ÂÃƒÂ§Ã…Â¡Ã¢â‚¬Å¾ÃƒÂ¥Ã¢â‚¬Â¦Ã‚Â¬ÃƒÂ¥Ã¢â‚¬Â¦Ã‚Â±ÃƒÂ©Ã†â€™Ã‚Â¨ÃƒÂ¥Ã‹â€ Ã¢â‚¬Â */

.pc-block {
    display: block !important;
}

.mobile-block {
    display: none !important;
}

.pcin-block {
    display: none !important;
}

.opacity-block {
    opacity: 0;
    visibility: hidden;
}

.mobile-block-768 {
    display: none !important;
}

.mobile-block-500 {
    display: none;
}

/*ÃƒÂ¦Ã‚ÂÃ…â€œÃƒÂ§Ã‚Â´Ã‚Â¢ÃƒÂ¦Ã‚Â Ã‚Â·ÃƒÂ¥Ã‚Â¼Ã‚Â*/
.search-alert {
    position: fixed;
    z-index: 100;
    background-color: #222;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.search-alert input::-webkit-input-placeholder {
    color: #555 !important;
}

.search-alert input::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #555 !important;
}

.search-alert input:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #555 !important;
}

.search-alert input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #555 !important;
}

.search-alert .cent-form {
    opacity: 0;
    transform: translate(0, 40px);
    transition: all .5s;
}

.search-alert .close {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 38px;
    right: 2.6%;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.search-alert .close:before {
    font-size: 30px;
    top: 0;
    left: 0;
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.search-alert .close:hover:before {
    color: #d00010;
}

.search-alert .cent-form {
    position: absolute;
    width: 94.8%;
    left: 2.6%;
    top: 50%;
    height: 2rem;
    margin-top: -63px;
    border-bottom: 1px solid #515151;
}

.search-alert .cent-form:before {
    color: #fff;
    font-size: 30px;
    position: absolute;
    left: 0;
    height: 50px;
    top: 50%;
    margin-top: -25px;
}

.search-alert .cent-form .tex {
    border: none;
    font-size: 1.2rem;
    height: 1.5rem;
    line-height: 1.5rem;
    text-align: center;
    width: 100%;
    color: #fff;
    background: none;
    padding-left: 2rem;
    padding-right: 3.5rem;
}

.search-alert .cent-form .sub-butn {
    border: none;
    height: 1.5rem;
    font-size: .8rem;
    line-height: 1.5rem;
    color: #555;
    text-align: right;
    background: none;
    position: absolute;
    right: 0;
    top: 0;
    width: 3.5rem;
    text-align: center;
}

.search-alert {
    transform-origin: bottom center;
    transform: scaleY(0);
    transition: transform .3s .5s;
}

.search-alert.active {
    transform-origin: top center;
    transform: scaleY(1);
    transition: transform .3s;
}

.search-alert.active .cent-form {
    opacity: 1;
    transform: translate(0, 0);
    transition: all .5s .3s;
}

/*ÃƒÂ¦Ã‚ÂÃ…â€œÃƒÂ§Ã‚Â´Ã‚Â¢ÃƒÂ¦Ã‚Â Ã‚Â·ÃƒÂ¥Ã‚Â¼Ã‚Âend*/

@media (max-width: 1500px) {
    .w1440 {
        width: 88%;
    }
}

@media (max-width: 1360px) {
    .header1 .pc-sub-nav .list .li-item .dd {
        font-size: 16px;
    }
}

@media (max-width: 1360px) {

    .header1 .nav .li,
    .header1 .pc-sub-nav .list .nlist .ul-two .li2 a.sp {
        margin-right: 1rem;
        font-size: 16px;
    }

    .header1 .pc-sub-nav .list .ul-s .li3 {
        font-size: 16px;
    }
}

@media (max-width: 1270px) {
    .header1 {
        padding: 0 3%;
    }

    .w1100 {
        width: 90%;
    }
}


@media (max-width: 1024px) {
    .pc-block {
        display: none !important;
    }

    .mobile-block {
        display: block !important;
    }

    .header1 {
        display: none;
    }

    .header2 {
        display: block;
    }

    .pcin-block {
        display: inline-block !important;
    }

    .n-search .search-left {
        width: 100%;
    }

    .n-search .wtab {
        margin-top: 1rem;
        display: flex;
        flex-flow: row wrap;
        justify-content: space-between;
        align-items: flex-start;
    }

    .n-search .search-right .tab-li {
        width: 48%;
    }

    .n-search .search-right {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .footer2 .bot-nav .tit {
        font-size: .6rem;
        padding: .65rem 0;
    }

    .footer2 .bot-nav .sec-list {
        font-size: .55rem;
        display: block;
    }

    .footer2 .bot-nav .sec-list p {
        margin: 0;
        padding: 0;
        color: #a7a7a7;
    }

    .header2 .sub-menu .sub-tab .swiper-slide {
        font-size: .6rem;
    }
}

@media (max-width: 560px) {
    .header2 .language-tab {
        width: 40px;
        right: calc(8% + 55px);
    }

    .header2 .language-tab .spbox {
        font-size: 16px;
        padding-right: 12px;
    }

    .header2 .language-tab .spbox:before {
        margin-top: -2px;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 4px solid #fff;
    }

    .header2 .logo {
        width: 5rem;
    }

    .header2 .search-btn {
        width: 25px;
    }
}

@media (max-width: 500px) {
    .mobile-block-500 {
        display: block;
    }
}


@media (max-width: 768px) {

    .i-listb .text,
    .i-lista .text,
    .i-listb .text .tit2,
    .n-banner .tit-p,
    .n-about .list1 .text,
    .n-about .list3 .whis-box .tit3,
    .n-say .list1 .tit2,
    .n-responsibility .list1 .tit4,
    .n-responsibility .list3 .tit4,
    .n-responsibility .list4 .tit4,
    .n-join .list1 .tit-16,
    .n-application .list5 .list-box .ani-slide .text .tit3 {
        text-align: left;
    }

    .more-click .btn {
        width: 60px !important;
        height: 60px !important;
        line-height: 60px !important;
        font-size: 12px;
    }

    .more-click .btn:after {
        width: 35px !important;
        height: 35px !important;
        line-height: 35px !important;
    }
}

@media (max-width: 560px) {
    .search-alert .cent-form .tex {
        font-size: 1rem;
    }
}


@media (max-width: 1500px) {
    .n-banner .warp-ulbox .ulbox {
        width: calc(100% - 7rem);
    }
}


@media (max-width: 1500px) {

    .n-school .list2 .ulbox,
    .n-school .list4 .ulbox,
    .n-school .list5 .ulbox,
    .n-help .list4 .ulbox,
    .n-stock .list3 .ulbox {
        padding-left: 6%;
    }
}

.n-supply .list3 .ul-item .li-item .text1 .img1 {
    transition: all .45s .3s ease;
}

.n-supply .list3 .ul-item .li-item .text1 .tit2 {
    transition: all .45s .3s ease;
}

.n-supply .list3 .ul-item .li-item:hover .text1 .img1 {
    transition: all 0s ease;
}

.n-supply .list3 .ul-item .li-item:hover .text1 .tit2 {
    transition: all 0s ease;
}

@media (max-width: 1360px) {
    .n-banner .tit-p {
        width: 90%;
    }
}

@media (max-width: 1024px) {
    .n-banner .warp-ulbox {
        padding: 0 .5rem;
        bottom: 1rem;
    }

    .n-banner .warp-ulbox .ulbox .tit1 {
        font-size: .75rem;
    }

    .n-banner .warp-ulbox .swiper-button-prev {
        left: .2rem;
    }

    .n-banner .warp-ulbox .swiper-button-next {
        right: .2rem;
    }

    .n-banner .warp-ulbox .ulbox {
        width: calc(100% - 3rem);
    }

    .n-banner .line-bot {
        height: 2rem;
    }

    .n-banner2 {
        height: 25rem;
    }
}

@media (max-width: 560px) {
    .n-banner .sub-nav .li-item span {
        padding-right: 16px;
        font-size: 12px;
    }

    .n-banner .sub-nav .li-item-two span {
        padding-right: 16px;
        font-size: 12px;
    }

    .n-banner .sub-nav .spbox {
        padding: 0 .3rem;
    }

    .n-banner .sub-nav .li-line {
        margin: 0 .3rem;
    }

    .n-banner .sub-nav .item-sub .li {
        font-size: 12px;
    }

    .n-banner .sub-nav .item-sub {
        width: 160px;
    }

    .n-banner .sub-nav .spbox {
        height: 40px;
        line-height: 40px;
    }

    .n-banner .sub-nav .item-sub {
        top: 40px;
    }

    .n-banner .sub-nav .li-item:nth-child(5) .item-sub {
        left: auto;
        right: 0;
    }

    .n-banner .sub-nav-two .swiper-slide:last-child .item-sub {
        left: auto;
        right: 0;
    }

    .n-banner .sub-nav .item-sub .li {
        height: 40px;
    }

    .n-banner .sub-nav-two .li-item span {
        padding-right: 16px;
        font-size: 12px;
    }

    .n-banner .sub-nav-two .spbox {
        padding: 0 .3rem;
    }

    .n-banner .item-sub .li {
        padding: 0 .3rem;
    }

    .n-banner .sub-nav-two .li-line {
        margin: 0 .3rem;
    }

    .n-banner .sub-nav-two .item-sub .li {
        font-size: 12px;
    }

    .n-banner .sub-nav-two .item-sub {
        width: 160px;
    }

    .n-banner .sub-nav-two .spbox {
        height: 40px;
        line-height: 40px;
    }

    .n-banner .sub-nav-two .item-sub {
        top: 40px;
    }

    .n-banner .sub-nav-two .item-sub .li {
        height: 40px;
    }

    .n-banner .sub-nav-two .swiper-wrapper {
        justify-content: flex-start;
    }

    .n-banner .warp-ulbox .swiper-button-next,
    .n-banner .warp-ulbox .swiper-button-prev {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 16px;
        margin-top: -15px;
    }
}

/*end*/


/*ÃƒÂ¥Ã‚Â¹Ã‚Â´ÃƒÂ¤Ã‚Â»Ã‚Â½ÃƒÂ¤Ã‚Â¸Ã¢â‚¬Â¹ÃƒÂ¦Ã¢â‚¬Â¹Ã¢â‚¬Â°ÃƒÂ¦Ã‚Â Ã‚Â·ÃƒÂ¥Ã‚Â¼Ã‚Â*/
.year-select {
    width: 150px;
}

.year-select div.cs-skin-border {
    font-weight: normal;
    text-align: center;
    padding-right: 32px;
    color: #666;
}

.year-select .cs-skin-border>span {
    border: none;
}

.year-select .cs-skin-border.cs-active span {
    color: #666;
}

.year-select .cs-select ul span {
    padding: 10px 5px;
    font-size: 14px;
    line-height: 22px;
}

.year-select .cs-select>span {
    height: 35px;
    line-height: 35px;
    padding: 0;
}

.year-select .cs-skin-border .cs-options li span:hover,
.year-select .cs-skin-border li.cs-focus span {
    background: #2d8edd;
    color: #fff !important;
}

.year-select .cs-select>span:after {
    content: '\e60d';
    font-size: 14px;
}

@media (max-width: 1024px) {
    .year-select {
        width: 100%;
    }

    .year-select div.cs-skin-border {
        text-align: left;
        padding-right: 0;
    }

    .year-select .cs-skin-border>span {
        font-size: 14px;
    }
}


@media (max-width: 960px) {
    .buttonbox {
        height: 35px !important;
        margin-top: 1rem !important;
    }

    .buttonbox .swiper-button-next,
    .buttonbox .swiper-button-prev {
        width: 35px !important;
        height: 35px !important;
        line-height: 35px !important;
        font-size: 16px !important;
    }

    .buttonbox .swiper-pagination {
        height: 35px !important;
        line-height: 35px !important;
    }

    .buttonbox .swiper-pagination span {
        width: 6px !important;
        height: 6px !important;
    }
}

@media (max-width: 768px) {
    .buttonbox .swiper-pagination {
        padding: 0 40px !important;
    }
}



@media (max-width: 768px) {
    .tab-label .n-tab-label {
        font-size: 14px;
    }
}


@media (max-width: 560px) {
    .n-application .tab-label {
        width: 150px !important;
    }

    .n-application .tab-label .n-tab-label {
        padding-right: 20px !important;
    }

    .n-application .tab-label .n-tab-label:before {
        font-size: 12px !important;
    }
}

@media (max-width: 560px) {
    .tab-label {
        width: 125px !important;
        height: 35px !important;
        line-height: 35px !important;
    }

    .tab-label .n-tab-label {
        margin-top: 6px;
    }

    .tab-label .n-tab-label:before {
        font-size: 14px !important;
    }
}

.no-data {
    padding: 2rem 0 0;
    text-align: center;
}

.no-data img {
    display: inline-block;
    max-width: 100%;
}

@media (max-width: 768px) {
    .no-data img {
        display: inline-block;
        max-width: 6rem;
    }
}

@media (max-width: 768px) {
    .layer-alert .md-close {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 16px;
    }

    .layer-alert .img-right {
        padding: 1.2rem .5rem 1rem;
    }
}

@media (max-width: 768px) {
    .video-alert .video {
        display: none;
    }

    .video-alert.md-show .video {
        display: block;
    }
}


@media (max-width: 960px) {
    .text-ajaxbox .ul-text .content-box5 .li-imgbox {
        height: 7.5rem;
    }
}

.tit-arrow {
    display: block;
}

.tit-arrow>img {}

.secondary_nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    height: 42px;
    line-height: 11px;
    background: rgba(34, 34, 34, .6);
    z-index: 9;
}

.secondary_nav_cont {
    width: 100%;
    max-width: 1298px;
    margin: 0 auto;
    color: #a7a7a7;
}

.secondary_nav span:first-child {
    margin-left: 11%;
}

.secondary_nav span {
    margin-left: 15px;
    float: left;
    margin-top: 16px;
    color: #a7a7a7;
}

.sizeColor {
    color: #a7a7a7;
}

section {
    display: block;
}

.n-patents .list1 {
    padding: 2.5rem 0;
}

.n-patents .list1 .title {
    margin-bottom: 50px;
}

.n-patents .list1 .tit1 {
    color: #444;
    margin-bottom: 20px;
}

.n-patents .list1 .tit2 {
    font-size: 16px;
    line-height: 1.6;
    color: #777;
}

.n-patents .list1 .img {
    width: 100%;
    margin-bottom: 2rem;
    position: relative;
}

.n-patents .list1 .img .su {
    
    line-height: 1;
    height: auto !important;
}

.n-patents .list1 .img span {
    font-size: 30px;
    line-height: 1;
}

.n-patents .list1 .img .p {
    font-size: 16px;
    line-height: 1.8;
    margin-top: 5px;
}

.n-patents .list1 .img .li {
    width: auto;
    color: #fff;
    right: 8%;
    top: 50%;
    transform: translate(0, -50%);
    position: absolute;
    z-index: 2;
    text-align: center;
    background-color: rgb(0 0 0 / 10%);
}


.n-patents .list1 .img img {
    width: 100%;
}

.n-patents .list1 .img2 {
    width: 100%;
    padding: 2.5rem 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.n-patents .list1 .img2 .ulbox2 {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
}

.n-patents .list1 .img2 .su {
    
    line-height: 1;
}

.n-patents .list1 .img2 span {
    font-size: 30px;
    line-height: 1;
}

.n-patents .list1 .img2 .p {
    font-size: 16px;
    line-height: 1.8;
    margin-top: 5px;
}

.n-patents .list1 .img2 .li {
    width: 20%;
    text-align: center;
}

.n-patents .list1 .ulbox {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: stretch;
}

.n-patents .list1 .ulbox .li {
    text-align: center;
    padding: 0 2%;
}

.n-patents .list1 .ulbox .li .su {
    
}

.n-patents .list1 .ulbox .li:nth-child(2) .su {}

.n-patents .list1 .ulbox .li .img {
    margin-bottom: 1rem;
}

.n-patents .list1 .ulbox .li span {
    font-size: 30px;
    line-height: 1;
}

.n-patents .list1 .ulbox .li span.tit-18 {
    font-size: 18px;
    line-height: 1;
}

.n-patents .list1 .ulbox .li .p {
    font-size: 16px;
    line-height: 1.8;
    margin-top: 5px;
    color: #848484;
}

.n-patents .list1 .tit3 {
    margin: 1rem auto;
}

@media (max-width: 768px) {
    .n-patents .list1 .ulbox .li {
        padding: 0 10px;
    }

    .n-patents .list1 .ulbox .li span {
        font-size: 20px;
    }

    .n-patents .list1 .ulbox .li .p,
    .n-patents .list1 .img .p {
        font-size: 12px;
    }

    .n-patents .list1 .img2 {
        padding: 1.5rem 0;
    }

    .n-patents .list1 .img2 .li:last-child {
        margin-bottom: 0;
    }

    .n-patents .list1 .img2 .li {
        width: 100%;
        margin-bottom: 1rem;
    }
}

@media (max-width: 500px) {
    .n-patents .list1 .title {
        margin-bottom: 1rem;
    }

    .n-patents .list1 .tit1 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .n-patents .list1 .tit2 {
        font-size: 12px;
    }

    .n-patents .list1 .img .li {
        right: 3%;
    }
}

.n-patents .list2 {
    background: #f9f9f9;
    padding: 1.8rem 0 3.5rem;
}

.n-patents .list2 .tit2 {
    margin-bottom: 20px;
}

.n-patents .list2 .ulbox {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: stretch;
}

.n-patents .list2 .ulbox .li {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #e8e8e8;
    /*width: 48%;*/
    width: 100%;
    padding-right: 10px;
    margin-bottom: .7rem;
}

.n-patents .list2 .ulbox .li1 {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #e8e8e8;
    width: 48%;
    padding-right: 10px;
    margin-bottom: .7rem;
}

.n-patents .list2 .ulbox .time {
    /*width: 100px; */
    width: 180px;
    font-size: 18px;
    color: #777;
}

.n-patents .list2 .ulbox .tit3 {
    color: #777;
    font-size: 18px;
    line-height: 1.5;
    font-weight: bold;
    /* width: calc(100% - 150px);*/
    width: calc(100% - 230px);
}

.n-patents .list2 .ulbox .img {
    width: 32px;
}

.n-patents .list2 .ulbox .img img {
    width: 100%;
}

.n-patents .list2 .more-click {
    margin-top: 1rem;
    text-align: center;
    cursor: pointer;
}

.n-patents .list2 .more-click .more-line {
    position: relative;
    text-align: center;
}

.n-patents .list2 .more-click .more-line:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
    background: #e9e9e9;
}

.n-patents .list2 .more-click .btn {
    width: 80px;
    height: 80px;
    text-align: center;
    line-height: 80px;
    border-radius: 50%;
    background: #f9f9f9;
    display: block;
    margin: 0 auto;
    position: relative;
    font-size: 16px;
    color: #fff;
}

.n-patents .list2 .more-click .btn:after {
    content: "";
    width: 40px;
    height: 40px;
    position: absolute;
    z-index: 2;
    background: #c60a2a;
    left: 50%;
    top: 50%;
    border-radius: 40px;
    transform: translate(-50%, -50%);
}

.n-patents .list2 .more-click .btn:before {
    position: relative;
    z-index: 5;
}

@media (max-width: 1360px) {
    .n-patents .list2 .ulbox .tit3 {
        font-size: 16px;
    }

    .n-patents .list2 .ulbox .time {
        font-size: 14px;
        width: 65px;
    }

    .n-patents .list2 .ulbox .tit3 {
        width: calc(100% - 120px);
    }
}

@media (max-width: 768px) {
    .n-patents .list2 .ulbox .li {
        width: 100%;
    }
}

.n-patents .list2 .ulbox .tit3 {
    width: 40%;
}

.n-patents .list2 .ulbox .PatentLevel {
    color: black;
}

.n-application .pa2 {
    padding-top: 2rem !important;
}

.n-application .line-bg {
    width: 100%;
    height: 2px;
    background: #e0e0e0;
    position: relative;
    position: absolute;
    bottom: 0;
    left: 0;
}

.n-application .line-bg:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 70px;
    position: absolute;
    left: 0;
    top: 0;
    background: #bc0d29;
}

.n-application .list1 {
    padding: 3rem 0;
    position: relative;
    z-index: 1;
    background: #fff;
}

.n-application .list1 .p-text {
    width: 780px;
    margin-bottom: 1rem;
}

.n-application .list1 .li-item {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: flex-end;
}

.n-application .list1 .li-item .text {
    width: 34%;
}

.n-application .list1 .li-item .text p {
    margin-bottom: 0;
}

.n-application .list1 .li-item .text .tit2 {
    margin-bottom: .5rem;
}

.n-application .list1 .li-item .img {
    width: calc(100% - 36% - 2.5rem);
}

.n-application .list1 .li-item .img img {
    width: 100%;
}

.n-application .list1 .li-item .imgs {
    width: 100%;
    overflow: hidden;
    margin-top: 2%;
}

.n-application .list1 .li-item .imgs>img {
    float: left;
    width: calc(100% / 4);
}

.n-application .list1 .li-item:nth-child(even) {
    /* flex-flow: row-reverse wrap; */
}

.n-application .list1 .tab-label {
    width: 180px;
    height: 45px;
    line-height: 45px;
    color: #fff;
    border-radius: 5px;
    margin: 1rem 0 0;
    background: #c60a2a;
}

.n-application .list1 .tab-label .n-tab-label {
    padding-right: 30px;
    color: #fff;
}

.n-application .list1 .tab-label .n-tab-label:before {
    font-size: 14px;
    position: absolute;
    right: 0;
    top: 0;
}

@media (max-width: 960px) {
    .n-application .list1 .p-text {
        width: 100%;
    }

    .n-application .list1 .li-item .text {
        margin-bottom: 1.25rem;
    }

    .n-application .list1 .li-item .text,
    .n-application .list1 .li-item .img {
        width: 100%;
    }
}

.n-application .honor {}

.n-application .honor-item {
    margin-bottom: 4%;
}

.n-application .honor-item .img {
    width: 100%;
}

.n-application .honor-item .img>img {
    width: 100%;
}

.n-application .honor-item .text {
    text-align: center;
    background-color: #f9f9f9;
    margin-top: 2%;
    padding: 4% 0;
}

.n-application .honor-item .text .tit2 {}

.n-application .list7 {
    padding: 3rem 0;
    position: relative;
    z-index: 1;
    background: #fff;
}

.n-application .list7 .li-item {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.n-application .list7 .li-item .text {
    width: 41%;
}

.n-application .list7 .li-item .text .tit2 {
    line-height: 1.3;
    margin-bottom: .65rem;
}

.n-application .list7 .li-item .text .tit3 {
    color: #777;
    line-height: 1.875;
}

.n-application .list7 .li-item .img {
    width: 50%;
    position: relative;
}

.n-application .list7 .li-item .img img {
    width: 100%;
}

.n-application .list7 .li-item .img .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    opacity: 0;
    transition: all .3s ease-in-out;
}

.n-application .list7 .li-item .img:hover .bg {
    opacity: 1;
}

.n-application .list7 .li-item .img:hover .video-btn:after {
    animation: icon1 2s ease-in-out infinite;
}

.n-application .list7 .li-item .img .video-btn {
    width: 2.25rem;
    height: 2.25rem;
    line-height: 2.25rem;
    display: inline-block;
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: .75rem;
    text-align: center;
}

.n-application .list7 .li-item .img .video-btn:before {
    position: relative;
    z-index: 3;
}

.n-application .list7 .li-item .img .video-btn:after {
    content: "";
    width: 2.25rem;
    height: 2.25rem;
    background: rgba(230, 0, 19, 0.9);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    margin-left: -1.125rem;
    top: 0;
    z-index: 2;
}

.n-application .list7 .li-item .libox {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: .75rem;
}

.n-application .list7 .li-item .libox .sp1 {
    
    margin-bottom: .2rem;
}

.n-application .list7 .li-item .libox .li {
    width: 20%;
    padding-right: 5%;
}

.n-application .list7 .li-item:nth-child(even) {
    flex-flow: row-reverse wrap;
}

.n-application .list7 .tab-label {
    width: 180px;
    height: 45px;
    line-height: 45px;
    color: #fff;
    border-radius: 5px;
    margin: 1rem 0 0;
    background: #c60a2a;
}

.n-application .list7 .tab-label .n-tab-label {
    padding-right: 30px;
    color: #fff;
}

.n-application .list7 .tab-label .n-tab-label:before {
    font-size: 14px;
    position: absolute;
    right: 0;
    top: 0;
}

@media (max-width: 960px) {
    .n-application .list7 .li-item .text {
        width: 100%;
        margin-bottom: 1.5rem;
    }

    .n-application .list7 .li-item .img {
        width: 100%;
    }

    .n-application .list7,
    .n-application .list22 {
        padding: 2rem 0;
    }
}

@media (max-width: 560px) {
    .n-application .list7 .li-item .libox .li {
        width: 33.3%;
        margin-bottom: .6rem;
    }
}

.n-application .list19 {
    padding: 0 0 2.5rem 0;
    position: relative;
    z-index: 1;
}

.n-application .list19 .dlbox .li-item {
    margin-bottom: 1rem;
    cursor: pointer;
    position: relative;
    z-index: 5;
    padding: 0 1%;
}

.n-application .list19 .dlbox .li-item>a {
    width: 100%;
    display: block;
    background-color: #f9f9f9;
}

.n-application .list19 .dlbox .li-item .img,
.n-application .list19 .dlbox .li-item .img {
    width: 100%;
    border-bottom: 1px solid #eee;
}

.n-application .list19 .dlbox .li-item .img>img {
    max-width: 100%;
}

.n-application .list19 .dlbox .li-item .btn {
    margin-top: .5rem;
    position: relative;
    display: inline-block;
    color: #333;
    font-weight: bold;
    padding: 0;
}

.n-application .list19 .dlbox .li-item .btn>img {
    width: 30px;
    margin-left: 10px;
}

.n-application .list19 .dlbox .li-item .btn:before {
    position: absolute;
    right: 0;
    font-size: 12px;
    height: 20px;
    line-height: 20px;
    top: 50%;
    margin-top: -10px;
    transition: all .3s ease-in-out;
}

.n-application .list19 .dlbox .warp-li-item {
    width: 100%;
}

.n-application .list19 .dlbox .n-li-item {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: stretch;
}

.n-application .list19 .dlbox .li-item:nth-child(3n) {
    margin-right: 0%;
}

.n-application .list19 .dlbox .warp-li-item .li-item.on .triangle-up,
.n-application .list19 .dlbox .warp-li-item .li-item.on .triangle-up2 {
    opacity: 1;
}

.n-application .list19 .dlbox .warp-li-item .li-item.on .btn:before {
    transform: rotate(-180deg);
}

.n-application .list19 .dlbox .warp-li-item .li-item.on-height {
    margin-bottom: 1%;
}

.n-application .list19 .dlbox .text-warp {
    padding: 2.5rem 3rem;
    background: #f9f9f9;
    position: relative;
    width: 100%;
    margin-bottom: 1rem;
    z-index: 4;
    display: none;
}

.n-application .list19 .dlbox .text-warp .n-text {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    margin: 0 auto;
}

.n-application .list19 .dlbox .text-warp .big-img {
    width: 100%;
}

.n-application .list19 .dlbox .text-warp .big-img img {
    max-width: 100%;
}

.n-application .list19 .dlbox .text-warp .img-right div {
    width: 100%;
    margin-bottom: 1.25rem;
}

.n-application .list19 .dlbox .text-warp .img-right div img {
    height: 8rem;
    width: auto;
    padding-right: 1rem;
    padding-bottom: 0.5rem;
}

.n-application .list19 .dlbox .text-warp .img-right div table tbody tr td {
    border: 1px gray solid;
}

.n-application .list19 .dlbox .text-warp .tit4 {
    margin-bottom: .65rem;
}

.n-application .list19 .dlbox .text-warp .tit5 {
    margin-bottom: .5rem;
}

.n-application .list19 .dlbox .text-warp .colse-btn {
    width: 1.25rem;
    height: 1.25rem;
    line-height: 1.25rem;
    border-radius: 50%;
    font-size: 16px;
    text-align: center;
    color: #828282;
    background: #e0e0e0;
    position: absolute;
    z-index: 2;
    right: 1.25rem;
    top: 1.25rem;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.n-application .list19 .dlbox .text-warp .colse-btn:hover {
    color: #fff;
    background: #d00c2d;
}

.n-application .list19 .dlbox .dlbox-item {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
}

.n-application .list19 .dlbox .text {
    padding: .6rem .6rem 1rem;
    width: 100%;
    bottom: 0;
    z-index: 2;
}

.n-application .list19 .dlbox .tit2 {
    margin-bottom: .2rem;
}

.n-application .list19 .dlbox .tit2 p {
    font-size: 16px;
    color: #7c7c7c;
}

.n-application .list19 .dlbox .tit3 {
    overflow: hidden;
    height: 56px;
    line-height: 28px;
}

.n-application .list19 .dlbox .triangle-up {
    width: 0;
    height: 0;
    position: absolute;
    left: 1rem;
    bottom: -10px;
    z-index: 2;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #f9f9f9;
    opacity: 0;
    transition: all .3s ease-in-out;
}

.n-application .list19 .dlbox .triangle-up2 {
    width: 0;
    height: 0;
    position: absolute;
    left: 1rem;
    bottom: -23px;
    z-index: 2;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #fff;
    opacity: 0;
    transition: all .3s ease-in-out;
}

@media (max-width: 768px) {
    .n-application .list19 .dlbox .li-item {
        width: 100%;
    }
}

.n-application .partner {
    padding: 2.65rem 0;
    background: #f9f9f9;
    position: relative;
    z-index: 1;
}

.n-application .partner .ulbox {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: stretch;
}

.n-application .partner .ulbox .li {
    padding: 0 1%;
}

.n-application .partner .ulbox .li:nth-child(3n) {
    margin-right: 0;
}

.n-application .partner .ulbox .tit2 {
    margin-bottom: .2rem;
    text-align: center;
}

.n-application .partner .ulbox .img {
    margin-bottom: .5rem;
}

.n-application .partner .ulbox .img img {
    width: 100%;
}

@media (max-width: 960px) {
    .n-application .partner .ulbox .li {
        width: 48%;
        margin-right: 4%;
    }

    .n-application .partner .ulbox .li:nth-child(3n) {
        margin-right: 4%;
    }

    .n-application .partner .ulbox .li:nth-child(2n) {
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .n-application .partner .ulbox .li {
        width: 100%;
        margin-right: 0;
    }
}

.n-application .list10 {
    padding: 3.2rem 0 3rem;
    background: #f9f9f9;
    position: relative;
    z-index: 2;
}

.n-application .list10 .buttonbox {
    margin-top: 1.5rem;
    height: 60px;
}

.n-application .list10 .buttonbox .swiper-button-next,
.n-application .list10 .buttonbox .swiper-button-prev {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 24px;
    margin-top: 0;
    top: auto;
    bottom: 0;
    opacity: 1;
    transition: all .3s ease;
    color: #fff;
    background: #ebebeb;
    border-radius: 50%;
}

.n-application .list10 .buttonbox .swiper-button-next:before,
.n-application .list10 .buttonbox .swiper-button-prev:before {
    display: block;
}

.n-application .list10 .buttonbox .swiper-button-prev {
    left: 0;
}

.n-application .list10 .buttonbox .swiper-button-next {
    right: 0;
}

.n-application .list10 .buttonbox .swiper-button-next:before {
    transform: rotate(-180deg);
}

.n-application .list10 .buttonbox .swiper-button-prev:hover,
.n-application .list10 .buttonbox .swiper-button-next:hover {
    background: #b70b28;
}

.n-application .list10 .buttonbox .swiper-pagination {
    font-size: 14px;
    height: 50px;
    line-height: 50px;
    width: 100%;
    bottom: 0;
}

.n-application .list10 .buttonbox .swiper-pagination span {
    margin: 0 4px;
    width: 12px;
    height: 12px;
    background: transparent;
    box-shadow: inset 0px 0px 0px 2px #9e9e9e;
    transition: all .3s ease-in-out;
}

.n-application .list10 .buttonbox .swiper-pagination span.swiper-pagination-bullet-active {
    background: #c60a2a;
    box-shadow: inset 0px 0px 0px 2px #c60a2a;
}

.n-application .list10 .ulbox {
    margin-top: 1.5rem;
    padding-left: calc((100% - 1440px)/2);
    position: relative;
    overflow: hidden;
}

.n-application .list10 .ulbox .swiper-wrapper {
    align-items: stretch;
}

.n-application .list10 .ulbox .tit2 {
    position: relative;
    z-index: 3;
}

.n-application .list10 .ulbox .swiper-slide {
    position: relative;
    cursor: pointer;
    background: #fff;
    height: 11rem;
    padding: .75rem 0;
    transition: background .3s ease-in-out;
}

.n-application .list10 .ulbox .tit2 {
    padding: 0 .75rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    line-height: 30px;
    height: 60px;
    margin-bottom: .35rem;
}

.n-application .list10 .ulbox .img {
    width: 100%;
    left: 0;
    position: absolute;
    bottom: 0;
    text-align: center;
    z-index: 2;
    height: 6.3rem;
}

.n-application .list10 .ulbox .img img {
    max-width: 100%;
    max-height: 100%;
}

.n-application .list10 .swiper-slide:hover {
    background: transparent;
}

#hoverA a:hover {
    background: transparent;
}

@media (max-width: 768px) {
    .n-application .list10 {
        padding: 2.5rem 0;
    }
}


.n-application .list12 {
    background: #fff;
}

.n-application .list12 .ulbox .swiper-slide {
    background: #f9f9f9;
}

.n-application .list12 .ulbox .swiper-slide:hover {
    background: transparent;
}



.n-application .list13 .top,
.n-application .list13 .text-ajaxbox,
.n-application .list13 .text-ajaxbox2 {
    background: #f9f9f9;
}

.n-application .list13 .text-box {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.n-application .list13 .text-box .li {
    width: auto;
    padding-left: 15px;
    margin-right: 1.25rem;
    position: relative;
    margin-bottom: 5px;
}

.n-application .list13 .text-box .li:before {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    left: 0%;
    top: 10px;
    border: 1px solid #a0a0a0;
    border-radius: 50%;
}

.n-application .list31 {
    background: #fff;
}

.n-application .list31 .ulbox .tit2 {
    position: relative;
    z-index: 3;
}

.n-application .list31 .ulbox .swiper-slide {
    background: #f9f9f9;
}

.n-activity .list3 {
    padding: 2.5rem 0;
}

.n-activity .list3 .conform-box {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 1.5rem;
}

.n-activity .list3 .conform-box .input1 {
    /* width: 32%; */
    border: 1px solid #e5e5e5;
    padding: .5rem;
    height: 60px;
    background: #fff;
    line-height: calc(60px - 1rem);
    margin-bottom: 2%;
    font-size: 16px;
}


.n-activity .list3 .conform-box .input1:nth-child(3n) {
    margin-right: 0;
}

.n-activity .list3 .conform-box .input2 {
    width: 100%;
}

.n-activity .list3 .conform-box .input3 {
    width: 32%;
    margin-right: 2%;
}

.n-activity .list3 .conform-box .cs-select {
    width: 32%;
    margin-right: 2%;
    border: 1px solid #e5e5e5;
    height: 60px;
    background: #fff;
    margin-bottom: .5rem;
    font-weight: normal;
}

.n-activity .list3 .conform-box .cs-select>span {
    font-size: 14px;
    border: none;
    padding: .5rem;
    line-height: calc(60px - 1rem);
}

.n-activity .list3 .conform-box .cs-select1 {
    position: relative;
    z-index: 3;
}

.n-activity .list3 .conform-box .cs-select2 {
    position: relative;
    z-index: 2;
    margin-right: 0;
}

.n-activity .list3 .conform-box .cs-skin-border .cs-options {
    top: 60px;
}

.n-activity .list3 .conform-box .cs-skin-border .cs-options {
    left: 0;
}

.n-activity .list3 .conform-box .cs-select>span::after {
    content: "\e60d";
    color: #aeaeae;
    font-size: 14px;
}

.n-activity .list3 .conform-box .cs-skin-border.cs-active>span {
    color: #c60a2a;
}

.n-activity .list3 .conform-box .cs-skin-border ul span {
    padding: 3px 15px;
    height: 45px;
    line-height: 45px;
    font-size: 14px;
    color: #666;
}

.n-activity .list3 .conform-box .cs-select .cs-options {
    max-height: 200px;
    overflow-y: auto;
}

.n-activity .list3 .conform-box .input2 {
    width: 100%;
    margin-right: 0;
    min-height: 6.25rem;
}

.n-activity .list3 .conform-box .w-input7 {
    text-align: center;
    margin-top: .5rem;
    width: 100%;
}

.n-activity .list3 .conform-box input[type="submit"] {
    height: 55px;
    text-align: center;
    font-weight: bold;
    font-size: .7rem;
    letter-spacing: 4px;
    width: 240px;
    position: relative;
    background: #2d8edd;
    border-radius: 3px;
    color: #fff;
    display: inline-block;
    margin: 0 auto;
}

.n-activity .list4 {
    padding: 2.5rem 0;
    position: relative;
    z-index: 1;
    background: #fff;
}

.n-activity .list4 .dlbox {
    margin-top: 1.5rem;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: stretch;
}

.n-activity .list4 .dlbox .li {
    background: #f9f9f9;
    padding: 1rem;
    width: 49%;
    margin-bottom: 1rem;
}

.n-activity .list4 .dlbox .text1 {
    padding-left: 80px;
    background: url(../images/add-icon.png) no-repeat left top;
    background-size: 1rem auto;
}

.n-activity .list4 .dlbox .text2 {
    padding-left: 80px;
    background: url(../images/tel-icon.png) no-repeat left top;
    background-size: 1rem auto;
}

.n-activity .list4 .dlbox .text3 {
    padding-left: 80px;
    background: url(../images/mail.png) no-repeat left top;
    background-size: 1rem auto;
}


.n-activity .list4 .dlbox .li-item {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: stretch;
    padding-bottom: .5rem;
    margin-bottom: .5rem;
    border-bottom: 1px solid #ececec;
}

.n-activity .list4 .dlbox .li-item .sp {
    width: 100%;
    margin-bottom: 10px;
}

.n-activity .list4 .dlbox .li {
    width: 32%;
}

.n-news {
    padding: 3rem 0;
}

.n-news .news-item {
    background: #fff;
    margin-bottom: 2%;
    padding: 0 1%;
}

.n-news .news-item>a {
    display: block;
    background-color: #f9f9f9;
    border-top: 2px solid #2d8edd;
}

.n-news .news-item .text {
    padding: .65rem;
    border-top: aliceblue;
}

.n-news .news-item .text .tit2 {
    margin-bottom: .3rem;
    color: #898989;
    letter-spacing: 1px;
    font-weight: bold;
    font-size: .6rem;
}

.n-news .news-item .text .time {
    color: #b4b4b4;
    margin-bottom: .3rem;
}

.n-news .news-item .text .tit3 {
    color: #b4b4b4;
    padding-bottom: .6rem;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: .75rem;
}

.n-news .news-item .text .bot {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: stretch;
}

.n-news .news-item .text .bot span {
    padding-right: .5rem;
    margin-right: .5rem;
    position: relative;
    font-size: 12px;
    color: #999;
}

.n-news .news-item .text .bot span:before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
    width: 1px;
    height: 12px;
    background: #e0e0e0;
}

.n-news .news-item .text .bot .sp {
    margin-right: 10px;
}

.n-news .news-item>a:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
    background-color: #2d8edd;
}

.n-news .news-item>a:hover .tit2,
.n-news .news-item>a:hover .time,
.n-news .news-item>a:hover .tit3,
.n-news .news-item>a:hover .bot span {
    color: #fff;
}

.n-news-info .list1 {
    background: #fff;
    padding: 3rem 0;
}

.n-news-info .list1 .news-info {
    width: 1180px;
    margin: 0 auto;
}

.n-news-info .list1 .news-top {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 1.5rem;
    text-align: left;
}

.n-news-info .list1 .news-top .news-tit {
    color: #333;
    margin-bottom: 20px;
    width: 72%;
}

.n-news-info .list1 .news-top .time {
    color: #999;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
}

.n-news-info .list1 .news-top .time .line {
    margin: 0 .5rem;
    background: #e0e0e0;
    width: 1px;
    height: 15px;
}

.n-news-info .list1 .news-top .time .sp {
    color: #2d8edd;
    margin-right: .5rem;
}

.n-news-info .list1 .news-text {
    padding: 2.5rem 0 2rem 0;
    min-height: 10rem;
    line-height: 2;
    border-bottom: 1px solid #e5e5e5;
}

.n-news-info .list1 .news-text img {
    /* max-width: 100%;*/
    width: 100%;
    display: block;
    margin: 0 auto;
}

.list1 .news-nav {
    padding-top: 45px;
}

.list1 .news-nav .nav-l {
    width: calc(100% - 200px);
    float: left;
}

.list1 .news-nav .nav-l span {
    font-size: 14px;
    line-height: 28px;
    color: #666;
    display: block;
}

.list1 .news-nav .nav-l span a {
    color: #666;
    width: 95%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
    transition: all .5s ease;
}

.list1 .news-nav .nav-l span a:hover {
    color: #2d8edd;
}

.list1 .news-nav .news-back {
    width: 180px;
    float: right;
}

.list1 .news-nav .news-back .back-btn {
    width: 100%;
    border: 1px solid #e0e0e0;
    height: 45px;
    line-height: 45px;
    display: block;
    font-weight: bold;
    text-align: left;
    text-align: center;
    font-size: 14px;
    border-radius: 3px;
    transition: all .5s ease;
}

.list1 .news-nav .news-back .back-btn span {
    position: relative;
    display: inline-block;
    padding-right: 25px;
}

.list1 .news-nav .news-back .back-btn span:before {
    position: absolute;
    font-size: 12px;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
}

.list1 .news-nav .news-back .back-btn:hover {
    color: #fff;
    background: #2d8edd;
    border: 1px solid #2d8edd;
}

.pagination {
    width: 100%;
    text-align: center;
    padding-top: 3%;
    justify-content: center;
}

.pagination li {
    display: inline-block;
    margin: 0 5px;
    color: #ccc;
}

.pagination .active span,
.pagination .active a {
    color: #fff;
    border: none;
}

.pagination li:hover a,
.pagination li .page-num-current {
    background-color: #2d8edd;
    color: #fff;
}

.pagination li.disabled:hover a {
    background-color: #fff;
    color: #ccc;
}

.pagination>li>a,
.pagination>li>span {
    display: inline-block;
    font-size: 14px;
    line-height: 14px;
    padding: 8px 12px;
    margin-right: 10px;
    color: #ccc;
    cursor: pointer;
    background-color: #eee;
    border: none;
}

.pagination .disabled span,
.pagination .disabled a {
    color: #ccc;
}

.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover,
.pagination>.active>span,
.pagination>.active>span:focus,
.pagination>.active>span:hover {
    color: #fff;
}

.pc-slide {
    float: left;
    width: 100%;
}

.pc-slide .view .swiper-slide .imgauto {
    width: 100%;
    border: 1px solid #eee;
    background-color: #f9f9f9;
}

.pc-slide .view .swiper-container {
    width: 100%;
    /* border: #e22434 1px solid; */
}

.pc-slide .preview {
    width: auto;
    margin-top: 10px;
    position: relative;
}

.pc-slide .preview .swiper-container {}

.pc-slide .preview .swiper-slide .imgauto {
    border: 1px solid #ddd;
    text-align: center;
    cursor: pointer;
    position: relative;
    width: auto;
}

.pc-slide .preview .swiper-slide .imgauto img {
    width: 100%;
}

.pc-slide .preview .arrow-left {
    /*background: url(../images/feel3.png) no-repeat left top;*/
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -9px;
    width: 9px;
    height: 18px;
    z-index: 10;
}

.pc-slide .preview .arrow-right {
    /*background: url(../images/feel4.png) no-repeat left bottom;*/
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -9px;
    width: 9px;
    height: 18px;
    z-index: 10;
}

.pc-slide .preview img {
    padding: 1px;
}

.pc-slide .preview .active-nav .imgauto {
    border: 1px solid #104492;
}

.pc-slide1 {
    margin-bottom: 40px;
}

.pc-slide1 .view {
    float: left;
    width: 870px;
}

.pc-slide1 .view .swiper-slide .imgauto {
    width: 100%;
    height: 580px;
    line-height: 580px;
}

.pc-slide1 .preview {
    position: relative;
    margin-left: 895px;
    padding-top: 40px;
}

.pc-slide1 .preview .swiper-container {
    height: 540px;
}

.pc-slide1 .preview .swiper-slide .imgauto {
    height: 171px;
    border: 3px solid #eee;
    text-align: center;
    cursor: pointer;
    position: relative;
}

.pc-slide1 .preview .swiper-slide .imgauto img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.pc-slide1 .preview .arrow-left {
    background: url(../images/feel3.png) no-repeat center #e7e7e7;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
    width: 128px;
    height: 24px;
}

.pc-slide1 .preview .arrow-right {
    background: url(../images/feel4.png) no-repeat center #e7e7e7;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 10;
    width: 128px;
    height: 24px;
}

.pc-slide1 .preview img {
    padding: 1px;
}

.pc-slide1 .preview .active-nav .imgauto {
    border-color: #104492;
}

div.zoomDiv {
    z-index: 999;
    position: absolute;
    top: 0;
    left: 0;
    background: #ffffff;
    border: 1px solid #ddd;
    display: none;
    text-align: center;
    overflow: hidden;
    font-size: 0;
}

div.zoomMask {
    position: absolute;
    background: url(../images/mask.png) repeat scroll 0 0 transparent;
    cursor: move;
    z-index: 1;
}

.n-application .list1 .li-item {
    align-items: center;
    margin-bottom: 4%;
}

.n-application .list1 .li-item.product .text {
    width: calc(100% - 50% - 2rem);
}

.n-application .list1 .li-item.product .img {
    width: 50%;
}

.n-application .list11 {
    background: #f9f9f9;
    padding: 1rem 0;
    position: relative;
    z-index: 1;
}

.n-application .list11:nth-child(2) {
    background-color: #fff;
}

.n-application .list11 .ulbox {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: stretch;
    margin-top: 1.5rem;
}

.n-application .list11 .li-item {
    background: #fff;
    padding: 1.35rem;
}

.n-application .list11 .li-item .tit2 {
    margin-bottom: .55rem;
}

.n-application .list11 .text {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.n-application .list11 .text .li {
    width: 48%;
    padding-left: 15px;
    position: relative;
    margin-bottom: 5px;
}

.n-application .list11 .text .li:before {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    left: 0%;
    top: 10px;
    border: 1px solid #a0a0a0;
    border-radius: 50%;
}

.n-application .list11.equip .tit1 {
    margin-bottom: 2%;
}

.n-application .list11.equip .tit1:before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 100%;
    background-color: #2d8edd;
    vertical-align: middle;
    margin-right: 8px;
}

.n-application .list11.equip .text img {
    max-width: 100%;
}

.n-application .list11.equip .li-item {
    padding: .2rem;
    background-color: transparent;
}

.n-application .list11.equip .li-item>div {
    background-color: #fff;
    padding: 1.2rem;
}

.n-application .list10.xgpro {
    background-color: #fff;
    position: relative;
}

.xgpro {
    position: relative;
}

.xgpro .swiper-container {

    margin-top: 3%;
}

.xgpro .swiper-slide {
    background-color: #f9f9f9;
    padding: .75rem 0;
}

.xgpro .swiper-slide .tit2 {
    padding: 0 .75rem;
    line-height: 30px;
    margin-bottom: .55rem;
}

.xgpro .swiper-slide .img {
    width: 80%;
    margin-left: 10%;
}

.xgpro .swiper-slide .img img {
    max-width: 100%
}

.xgpro .swiper-button-prev,
.xgpro .swiper-button-next {
    bottom: 3%;
    top: auto;
    background-color: #ebebeb;
    background-size: 12px auto;
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

.xgpro .swiper-button-prev {
    background-image: url(../images/leftB.png);
}

.xgpro .swiper-button-next {
    background-image: url(../images/rightB.png);
}


.n-news.search .news-item>a {
    border-top: none;
}

.n-news.search .news-item .text .bot {
    justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    -moz-align-items: center;
}

.n-news.search .news-item .text .tit3 {
    border-bottom: none;
    padding: 0;
    margin: 0;
}

.noresult {
    text-align: center;
    font-size: 16px;
}

.n-application.develop .list1 .li-item {

    align-items: flex-start;

    padding-bottom: 6%;

    padding-top: 4%;

    border-bottom: 1px solid #eee;
}

.n-patents.develop-tit .list1 .ulbox .li .img {
    margin-bottom: 0
}

.n-patents.develop-tit .list1 .img img {
    max-width: 900px;
}

.develop-tit {
    padding-bottom: 2%;
    border-bottom: 1px solid #eee;
}

.n-patents.develop-tit .list1 {
    padding-bottom: 0;
}

.banner {
    position: relative;
}

.banner:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, .7);
    z-index: 1;
}

.banner .banner-bg {
    position: relative;
    max-width: 100%;
}

.banner .banner-swiper {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 1;
    transform: translateY(-50%);
    margin-top: 30px;
}

.banner .banner-swiper .swiper-container {
    width: 90%;
    margin: 0 auto;
}

.banner .banner-swiper .swiper-slide {}

.banner .banner-swiper .con {
    text-align: center;
}

.banner .banner-swiper .con .img {
    width: 50%;
    margin: 30% auto 0 auto;
    border-bottom: 1px solid #fff;
}

.banner .swiper-slide-active .con .img {
    width: 100%;
    margin-top: 0;
}

.banner .banner-swiper .con .img>img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto;
}

.banner .banner-swiper .con .info {
    display:
        -webkit-box;
    display:
        -ms-flexbox;
    display:
        flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content:
        center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    margin-top: 6%;
    opacity: 0;
    transition: all 1s;
    -moz-transition: all 1s;
    /* Firefox 4 */
    -webkit-transition: all 1s;
    /* Safari å’Œ Chrome */
    -o-transition: all 1s;
    /* Opera */
    display: none;
}

.banner .swiper-slide-active .con .info {
    display:
        -webkit-box;
    display:
        -ms-flexbox;
    display:
        flex;
    opacity: 1;
}

.banner .banner-swiper .info .info-title {
    position: relative;
    width: 120px;
}

.banner .banner-swiper .info .info-txt {
    width: calc(100% - 200px);
}

.banner .banner-swiper .info .info-title .text {
    display: inline-block;
    font-weight: 600;
    font-size: 18px;
    color: #fff;
    vertical-align: middle;
    width: calc(100% - 30px);
}

.banner .banner-swiper .info .info-title .line {
    display: inline-block;
    height: 30px;
    width: 1px;
    background-color: #fff;
    margin: 0 10px;
    vertical-align: middle;
}

.banner .banner-swiper .info .info-txt .txt {
    font-size: 600;
    font-size: 14px;
    line-height: 1.25;
    color: #fff;
}

.banner .banner-swiper .swiper-pagination {}

.banner .banner-swiper .swiper-button-prev {
    left: 0%;
    background-color: #fff;
    background-size: 14px auto;
}

.banner .banner-swiper .swiper-button-next {
    right: 0%;
    background-color: #fff;
    background-size: 14px auto;
}

.banner .banner-swiper .swiper-button-prev:after,
.banner .banner-swiper .swiper-button-next:after {
    font-size: 18px;
    color: #2d8edd;
}

.hidden-xs {
    display: block;
}


@media (max-width: 1270px) {
    .n-news-info .list1 .news-info {
        width: 88%;
    }
}

@media (max-width: 1024px) {
    .tit-24 {
        font-size: .6rem;
    }

    .n-activity .list2 .top {
        padding: .65rem .5rem;
    }

    .n-activity .list2 .text {
        padding: 0 .5rem .65rem;
    }
}

@media (max-width: 960px) {
    .n-activity .list4 .dlbox .li {
        width: 100%;
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .n-strategic .p-text {
        width: 100%;
    }

    .n-activity .list4 .dlbox .li {
        width: 100%;
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .tit-24 {
        font-size: 22px;
    }

    .n-application .list11 .li-item {
        width: 100%;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {

    .list1 .news-nav .nav-l {
        width: 100%;
        display: block;
        float: none;
        margin-bottom: .5rem;
    }

    .list1 .news-nav .news-back {
        display: block;
        float: none;
    }

    .n-news-info .list1 .news-top {
        padding-bottom: 1rem;
    }

    .n-news-info .list1 .news-text {
        padding: 4%;
    }

    .n-activity .list3 {
        background-size: auto !important;
    }

    .n-activity .list3 .conform-box .input1,
    .n-activity .list3 .conform-box .cs-select {
        width: 100%;
        margin-right: 0;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .hidden-xs {
        display: none;
    }

    .preloader .preloader-logo img {
        width: 70%;
    }

    .banner .banner-swiper .con .img {
        width: 70%;
        margin: 0 auto 2% auto;
    }

    .banner .swiper-slide-active .con .info {
        margin: 0;
    }

    .banner .banner-bg {
        height: 240px;
    }

    .i-catagory .con {
        margin-top: 4%;
    }

    .i-product .pics .swiper-button-prev {
        left: -4% !important;
    }

    .i-product .pics .swiper-button-next {
        right: -4% !important;
    }

    .n-banner {
        height: 16rem;
    }

    .n-banner .text {
        margin-top: 8%;
    }

    .n-application .list1 .li-item .text {
        margin-top: 8%;
    }

    .n-application .list1 {
        padding-bottom: 1rem;
    }

    .n-activity .list4 .dlbox .text2,
    .n-activity .list4 .dlbox .text1,
    .n-activity .list4 .dlbox .text3 {
        padding-left: 40px;
    }
}